-
Notifications
You must be signed in to change notification settings - Fork 296
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug/#6587 - Fix Search Funnel error when GA is in a gathering state #6606
Conversation
Size Change: +36 B (0%) Total Size: 1.24 MB
ℹ️ View Unchanged
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good @hussain-t, just one very minor comment from me.
analyticsModuleConnected | ||
? select( MODULES_ANALYTICS ).isGatheringData() | ||
: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a minor point, but this could be marginally simplified by using logical AND here instead:
analyticsModuleConnected | |
? select( MODULES_ANALYTICS ).isGatheringData() | |
: false | |
analyticsModuleConnected && select( MODULES_ANALYTICS ).isGatheringData() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, updated 👍
…gathering-data-search-funnel.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, nice one @hussain-t!
Summary
Addresses issue:
Relevant technical choices
SearchFunnelWidget
#6217 in this PR.PR Author Checklist
Do not alter or remove anything below. The following sections will be managed by moderators only.
Code Reviewer Checklist
Merge Reviewer Checklist